home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 2 / Deutsche Edition 2.iso / mac / TEXT / OzTeX 1.7 ƒ / PS-files / global.ps < prev    next >
Text File  |  1993-03-03  |  625b  |  19 lines

  1. % When printing a DVI file, OzTeX looks for a file called global.ps
  2. % in the current folder and includes it after the PostScript prolog.
  3. % Copy this file to the same folder as your DVI file to get the word
  4. % "DRAFT" printed in the same location on every DVI page.
  5.  
  6. /@bop0                          % redefine @bop0 (see DVItoPS.ps)
  7. { pop                           % throw away page number
  8.   /mysave save def
  9.   gsave
  10.     initgraphics                % use PostScript's default coordinates
  11.     /Helvetica-Bold findfont
  12.     72 scalefont setfont
  13.     36 36 moveto
  14.     0.95 setgray
  15.     (DRAFT) show
  16.   grestore
  17.   mysave restore
  18. } def
  19.